To connect to a printer attached to a NetWare server
Important
Notes
To redirect output from a port to a print queue
net use ServerName \\PrintQueue
For example, to redirect output from LPT1 to the NetWare print queue called Memos on the server Nw4, type:
net use lpt1 \\nw4\memos
This is equivalent to the NetWare capture q=memos s=nw4 l=1 command line.
To send files that do not require formatting to LPT1
copy FileName ServerName
For example:
copy myfile.txt lpt1
To copy a file directly to a print queue
copy FileName \\PrintQueue
For example:
copy myfile.txt \\nw4\memos
To connect to a printer in a Novell Directory Services (NDS) tree
net use drive: \\TreeName\printer.OrgName.OrgName [/u:UserName.OrgName.OrgName [password]]
Value | Description |
---|---|
TreeName | Name of the tree volume. |
OrgName | Tree location to which you want to connect. |
UserName.OrgName.OrgName | The user name and context for this tree (unless it is your default tree). |
Important
Notes